home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1997 #2 / Amiga Plus Extra 1997 #2.iso / pd / misc / bed / rexx / deletefile.bed < prev    next >
Encoding:
Text File  |  1997-02-16  |  329 b   |  19 lines

  1. /*
  2. **
  3. ** $VER: DeleteFile.bed 1.0 (17.04.96)
  4. **
  5. ** DeleteFile.bed - By Gerbert Nuijen
  6. **
  7. ** Simple script to delete a file, I really missed this option :)
  8. **
  9. */
  10.  
  11. OPTIONS RESULTS
  12.  
  13. GetFilePath PATH
  14. fpath = RESULT
  15.  
  16. 'RequestFile TITLE="Delete File..." OKGADGET=Delete PATH=' || fpath
  17. ADDRESS COMMAND 'Delete ' || RESULT || ' QUIET'
  18.  
  19.